home *** CD-ROM | disk | FTP | other *** search
/ Capcom E3 2004 Press CD ~…pcom Sales CD 2004 (USA) / Capcom E3 2004 Press CD (USA).bin / pc / files / crimson / crimson_0401_press.swf / scripts / frame_3 / PlaceObject2_66_19 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2004-04-21  |  281b  |  17 lines

  1. onClipEvent(enterFrame){
  2.    var distance = _root._ymouse - ycenter;
  3.    _Y = _Y - distance * speed;
  4.    if(_Y > 0)
  5.    {
  6.       _Y = -1925;
  7.    }
  8.    if(_Y < -1925)
  9.    {
  10.       _Y = 0;
  11.    }
  12.    if(!this.hitTest(_root._xmouse,_root._ymouse))
  13.    {
  14.       speed = 0.05;
  15.    }
  16. }
  17.